home *** CD-ROM | disk | FTP | other *** search
/ Gamers Arsenal 1 / Gamers Arsenal (Arsenal Computer).iso / gifreed / gifv.sla < prev    next >
Text File  |  1993-10-11  |  666b  |  17 lines

  1. ;
  2. ; GIFV.SLA
  3. ; Slide show of ROOT directory in Drive G:
  4. ; Pick highest resolution then back down one.
  5. ;
  6.         slide-type-normal               ;Pick normal display mode
  7.         res 9                           ;pick resolution #9
  8.         res-lock                        ;lock in on it
  9.         res-down                        ;no go down to one resolution
  10.         change-path g:\*.gif            ;select path of files
  11. :loop                                   ;label
  12.         loadnext :exit                  ;load/display file
  13.         goto :loop                      ;loop through files
  14. :exit                                   ;where we exit program.
  15.  
  16.  
  17.